790756ad0a9af630428e354fc0dabb80566014a1,app/src/main/java/jonas/tool/saveForOffline/SaveService.java,ServiceHandler,handleMessage,#Message#,93
Before Change
.setContentTitle("Save completed")
.setContentText(pageSaver.getPageTitle())
.setIcon(R.drawable.ic_notify_save)
.setShowProgress(false)
.createNotificationWithAlert();
}
After Change
.setContentTitle("Save completed")
.setContentText(pageSaver.getPageTitle())
.setIcon(R.drawable.ic_notify_save)
.setShowProgress(false)
.setOngoing(false)
.createNotificationWithAlert();
}